You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE workflow_index (
workflow_id VARCHAR(255) NOT NULL, correlation_id VARCHAR(128) NULL,
workflow_type VARCHAR(128) NOT NULL,
start_time TIMESTAMP WITH TIME ZONE NOT NULL,
status VARCHAR(32) NOT NULL,
json_data JSONB NOT NULL,
PRIMARY KEY (workflow_id)
);
It would also be good to review the scripts of the rest of the persistence.
I think the best thing to do is to create a new migration with the highest value in order not to break anything.
Describe the bug
Inconsistency in the definition of the correlation_id attribute in two tables. Same attribute but different length.
A clear and concise description of what the bug is.
Details
Conductor version: 3.21.12
Persistence implementation: Postgres
Queue implementation: Postgres
Lock: N/A
Workflow definition: N/A
Task definition: N/A
Event handler definition: N/A
Expected behavior
Same type of definition
The text was updated successfully, but these errors were encountered: